home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Source / Property Editors / UPDSQLED.DFM / UPDSQLED.txt
Encoding:
Text File  |  1999-08-11  |  5.0 KB  |  219 lines

  1. object UpdateSQLEditForm: TUpdateSQLEditForm
  2.   Left = 196
  3.   Top = 114
  4.   ActiveControl = UpdateTableName
  5.   BorderStyle = bsDialog
  6.   ClientHeight = 298
  7.   ClientWidth = 473
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   OnCloseQuery = FormCloseQuery
  11.   OnCreate = FormCreate
  12.   OnDestroy = FormDestroy
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object OkButton: TButton
  16.     Left = 215
  17.     Top = 268
  18.     Width = 75
  19.     Height = 25
  20.     Caption = '&OK'
  21.     Default = True
  22.     ModalResult = 1
  23.     TabOrder = 0
  24.     OnClick = OkButtonClick
  25.   end
  26.   object CancelButton: TButton
  27.     Left = 303
  28.     Top = 268
  29.     Width = 75
  30.     Height = 25
  31.     Cancel = True
  32.     Caption = 'Cancel'
  33.     ModalResult = 2
  34.     TabOrder = 1
  35.   end
  36.   object HelpButton: TButton
  37.     Left = 391
  38.     Top = 268
  39.     Width = 75
  40.     Height = 25
  41.     Caption = '&Help'
  42.     TabOrder = 2
  43.     OnClick = HelpButtonClick
  44.   end
  45.   object PageControl: TPageControl
  46.     Left = 6
  47.     Top = 6
  48.     Width = 459
  49.     Height = 253
  50.     ActivePage = FieldsPage
  51.     TabOrder = 3
  52.     OnChanging = PageControlChanging
  53.     object FieldsPage: TTabSheet
  54.       Caption = 'Options'
  55.       object GroupBox1: TGroupBox
  56.         Left = 8
  57.         Top = 4
  58.         Width = 435
  59.         Height = 212
  60.         Caption = ' SQL Generation '
  61.         TabOrder = 0
  62.         object Label1: TLabel
  63.           Left = 12
  64.           Top = 18
  65.           Width = 61
  66.           Height = 13
  67.           Caption = 'Table &Name:'
  68.           FocusControl = UpdateTableName
  69.         end
  70.         object Label3: TLabel
  71.           Left = 146
  72.           Top = 18
  73.           Width = 51
  74.           Height = 13
  75.           Caption = '&Key Fields:'
  76.           FocusControl = KeyFieldList
  77.         end
  78.         object Label4: TLabel
  79.           Left = 289
  80.           Top = 18
  81.           Width = 68
  82.           Height = 13
  83.           Caption = 'Update &Fields:'
  84.           FocusControl = UpdateFieldList
  85.         end
  86.         object UpdateTableName: TComboBox
  87.           Left = 9
  88.           Top = 35
  89.           Width = 130
  90.           Height = 21
  91.           ItemHeight = 13
  92.           TabOrder = 0
  93.           OnChange = UpdateTableNameChange
  94.           OnClick = UpdateTableNameClick
  95.         end
  96.         object KeyFieldList: TListBox
  97.           Left = 146
  98.           Top = 35
  99.           Width = 136
  100.           Height = 163
  101.           ItemHeight = 13
  102.           MultiSelect = True
  103.           PopupMenu = FieldListPopup
  104.           TabOrder = 6
  105.           OnClick = SettingsChanged
  106.         end
  107.         object UpdateFieldList: TListBox
  108.           Left = 289
  109.           Top = 35
  110.           Width = 136
  111.           Height = 163
  112.           ItemHeight = 13
  113.           MultiSelect = True
  114.           PopupMenu = FieldListPopup
  115.           TabOrder = 7
  116.           OnClick = SettingsChanged
  117.         end
  118.         object GenerateButton: TButton
  119.           Left = 17
  120.           Top = 154
  121.           Width = 114
  122.           Height = 25
  123.           Caption = '&Generate SQL'
  124.           TabOrder = 4
  125.           OnClick = GenerateButtonClick
  126.         end
  127.         object PrimaryKeyButton: TButton
  128.           Left = 17
  129.           Top = 124
  130.           Width = 114
  131.           Height = 25
  132.           Caption = 'Select &Primary Keys'
  133.           TabOrder = 3
  134.           OnClick = PrimaryKeyButtonClick
  135.         end
  136.         object DefaultButton: TButton
  137.           Left = 17
  138.           Top = 93
  139.           Width = 114
  140.           Height = 25
  141.           Caption = '&Dataset Defaults'
  142.           Enabled = False
  143.           TabOrder = 2
  144.           OnClick = DefaultButtonClick
  145.         end
  146.         object QuoteFields: TCheckBox
  147.           Left = 18
  148.           Top = 184
  149.           Width = 119
  150.           Height = 17
  151.           Caption = '&Quote Field Names'
  152.           TabOrder = 5
  153.           OnClick = SettingsChanged
  154.         end
  155.         object GetTableFieldsButton: TButton
  156.           Left = 17
  157.           Top = 62
  158.           Width = 114
  159.           Height = 25
  160.           Caption = 'Get &Table Fields'
  161.           TabOrder = 1
  162.           OnClick = GetTableFieldsButtonClick
  163.         end
  164.       end
  165.     end
  166.     object SQLPage: TTabSheet
  167.       Caption = 'SQL'
  168.       object Label2: TLabel
  169.         Left = 13
  170.         Top = 53
  171.         Width = 48
  172.         Height = 13
  173.         Caption = 'S&QL Text:'
  174.         FocusControl = SQLMemo
  175.       end
  176.       object SQLMemo: TMemo
  177.         Left = 9
  178.         Top = 69
  179.         Width = 433
  180.         Height = 141
  181.         ScrollBars = ssVertical
  182.         TabOrder = 0
  183.         OnKeyPress = SQLMemoKeyPress
  184.       end
  185.       object StatementType: TRadioGroup
  186.         Left = 10
  187.         Top = 6
  188.         Width = 432
  189.         Height = 40
  190.         Caption = 'Statement Type'
  191.         Columns = 3
  192.         ItemIndex = 0
  193.         Items.Strings = (
  194.           '&Modify'
  195.           '&Insert'
  196.           '&Delete')
  197.         TabOrder = 1
  198.         OnClick = StatementTypeClick
  199.       end
  200.     end
  201.   end
  202.   object FTempTable: TTable
  203.     Left = 16
  204.     Top = 269
  205.   end
  206.   object FieldListPopup: TPopupMenu
  207.     Left = 54
  208.     Top = 270
  209.     object miSelectAll: TMenuItem
  210.       Caption = '&Select All'
  211.       OnClick = SelectAllClick
  212.     end
  213.     object miClearAll: TMenuItem
  214.       Caption = '&Clear All'
  215.       OnClick = ClearAllClick
  216.     end
  217.   end
  218. end
  219.